home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-06-03 | 597 b | 38 lines | [TEXT/MPS ] |
- ; all functions just say that everything is fine and nothing else
- ; see also MyPrintDriver.p for an alternate version of the driver
- ;
- ; a printer driver related to a physical device would of course be more complete than that
-
-
- _Debugger OPWORD $A9FF
-
- XPRINT PROC EXPORT
-
- DC.W $0C00
- DC.W $0000
- DC.W $0000
- DC.W $0000
- DC.W DRVROPEN
- DC.W DRVRPRIME
- DC.W DRVRCONTROL
- DC.W DRVRSTATUS
- DC.W DRVRCLOSE
- DC.B '.Print'
- DC.B $20
-
- DRVROPEN
- MOVE.B $0A,$0007(A1)
-
- DRVRPRIME
- DRVRSTATUS
- DRVRCLOSE
- MOVEQ #$00,D0
- RTS
- DRVRCONTROL
- MOVEQ #$00,D0
- MOVE.L $08FC,-(A7) ; $08FC is JIODone
- RTS
-
- ENDPROC
- END
-